home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Belgian Amiga Club - ADF Collection
/
BS1 part 60.zip
/
BS1 part 60
/
Highspeed pascal.adf
/
Interface
/
Clipboard.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1992-01-16
|
695b
|
47 lines
Unit Clipboard;
Interface
Uses Exec;
Type
tSatisfyMsg = Record
sm_Msg: tMessage;
sm_Unit: Integer;
sm_ClipID: LongInt;
End;
tClipboardUnitPartial = Record
cu_Node: tNode;
cu_UnitNum: LongInt;
End;
pDevice = ^tDevice;
pUnit = ^tUnit;
tIOClipReq = Record
io_Message: tMessage;
io_Device: pDevice;
io_Unit: pUnit;
io_Command: Integer;
io_Flags: ShortInt;
io_Error: ShortInt;
io_Actual: LongInt;
io_Length: LongInt;
io_Data: pShortInt;
io_Offset: LongInt;
io_ClipID: LongInt;
End;
Const
CBD_POST = $9;
PRIMARY_CLIP = $0;
CBD_CURRENTREADID = $A;
CBD_CURRENTWRITEID = $B;
CBERR_OBSOLETEID = $1;
End.